home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / program / multlang.zip / MEDIT.DFM / MEDIT.txt
Text File  |  1996-06-10  |  1KB  |  65 lines

  1. object Editor: TEditor
  2.   Left = 260
  3.   Top = 140
  4.   Width = 387
  5.   Height = 246
  6.   Caption = 'Language editor'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = [fsBold]
  11.   FormStyle = fsMDIChild
  12.   Position = poScreenCenter
  13.   Visible = True
  14.   OnClose = FormClose
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Label1: TLabel
  18.     Left = 8
  19.     Top = 4
  20.     Width = 361
  21.     Height = 93
  22.     Alignment = taCenter
  23.     AutoSize = False
  24.     Caption = 
  25.       'The heart of the TMultLang component is the Language Editor wher' +
  26.       'e you maintain all languages. It is very easy and you can add ne' +
  27.       'w languages with just a few mouse clicks. This editor is also lo' +
  28.       'calized to suit many users.'
  29.     Font.Color = clBlack
  30.     Font.Height = -13
  31.     Font.Name = 'Arial'
  32.     Font.Style = [fsBold]
  33.     ParentFont = False
  34.   end
  35.   object Button1: TButton
  36.     Left = 44
  37.     Top = 144
  38.     Width = 297
  39.     Height = 29
  40.     Caption = 'Enter the new RAD world, get productive'
  41.     TabOrder = 0
  42.     OnClick = Button1Click
  43.   end
  44.   object MultLang1: TMultLang
  45.     Left = 240
  46.     Top = 100
  47.     Width = 129
  48.     Height = 22
  49.     AlignIcon = alLeft
  50.     AlignText = alLeft
  51.     IconMargin = 1
  52.     ItemHeight = 16
  53.     Items.Strings = (
  54.       'English'
  55.       'Swedish')
  56.     ShowIcons = False
  57.     Text = 'English'
  58.     ResizeIcon = False
  59.     TextMargin = 5
  60.     DefaultLanguage = 'English'
  61.     LanguageFile = '%EXEPath%Mdiapp.lan'
  62.     LanguagesData = {}
  63.   end
  64. end
  65.